home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
sal100
/
shaker.src
< prev
next >
Wrap
Text File
|
1993-05-29
|
327b
|
22 lines
void shaker()
{
int a;
int b;
int c;
a = ARRAYSIZE-1;
b = 0;
do
{
for (c = b; c < a; c++)
if (Vektor[c] > Vektor[c+1])
SwapNumbers(c,c+1);
a--;
for (c = a; c >= b; c--)
if (Vektor[c] > Vektor[c+1])
SwapNumbers(c,c+1);
b++;
}
while (a >= b);
}